home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 684 / 684.xpi / chrome / fireftp.jar / content / asciiFiles.xul < prev    next >
Extensible Markup Language  |  2008-01-12  |  1KB  |  30 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css"   type="text/css"?>
  4. <?xml-stylesheet href="chrome://fireftp/skin/fireftp.css" type="text/css"?>
  5.  
  6. <!DOCTYPE dialog SYSTEM "chrome://fireftp/locale/preferences.dtd">
  7. <dialog id             = "asciiFiles2"
  8.         title          = "&asciiTitle;"
  9.         persist        = "screenX screenY"
  10.         xmlns          = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11.         buttons        = "accept, cancel"
  12.         onload         = "readPreferences()"
  13.         ondialogaccept = "return savePreferences();">
  14.  
  15.   <stringbundle id="strings" src="chrome://fireftp/locale/strings.properties"/>
  16.  
  17.   <script type="application/x-javascript" src="chrome://fireftp/content/js/etc/common.js"/>
  18.   <script type="application/x-javascript" src="chrome://fireftp/content/js/dialogs/asciiFiles.js"/>
  19.  
  20.   <label value="&asciifiles.label;" control="asciifiles" tooltiptext="&asciifiles.tip;"/>
  21.   <hbox>
  22.     <listbox id="asciilist" rows="5"/>
  23.     <vbox pack="center">
  24.       <button label="&add.label;"    oncommand="addType()"/>
  25.       <button label="&remove.label;" oncommand="removeType()"/>
  26.     </vbox>
  27.   </hbox>
  28.  
  29. </dialog>
  30.